home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-11-11 | 599 b | 30 lines | [TEXT/CWIE] |
- // CCMArea version 1.3
- // 11-11-97
- // by David Catmull
-
- /* History:
-
- 10-21-97 First version
- */
-
- #include "StCMDialogHandler.h"
- #include "UCMArea.h"
-
- StCMDialogHandler::StCMDialogHandler(ResIDT inDialogResID,LCommander *inSuper)
- : StDialogHandler(inDialogResID,inSuper)
- {
- }
-
- void
- StCMDialogHandler::EventMouseDown(const EventRecord &inMacEvent)
- {
- if (!UCMArea::EventMouseDown(inMacEvent))
- StDialogHandler::EventMouseDown(inMacEvent);
- }
-
- void
- StCMDialogHandler::AdjustCursor(const EventRecord &inMacEvent)
- {
- if (!UCMArea::AdjustCursor(inMacEvent))
- StDialogHandler::AdjustCursor(inMacEvent);
- }